home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 2
/
Amiga Tools 2.iso
/
film-datenbank
/
rexx
/
mmui.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1995-03-09
|
786b
|
47 lines
/*============================================================================
*
* Program: mmui.rexx
*
* Version: 1.0
*
* Purpose: sets up a little ARexx-Test-Environment for MovieMUI 3.0
* simply type in the command.
*
* Author: Andre Bernhardt
*
* Copyright (c) Andre Bernhardt 1993-94
*
* History:
*
*============================================================================
*/
port_name = "MOVIEMUI"
if ( ~show( 'p', port_name ) ) then do
say "Please start MovieMUI first."
exit
end
address value port_name
options results
do forever
say "Please enter command ('q' to exit):"
parse pull command
if (command = 'q') then
break
else
do
command
say "replied: RC = " rc
if RC =0 then
say result
end
end
exit